User-defined type

Commonly known to other programming language as struct.

Var:Create(
  Point,
    Number x,
    Number y
)
Var:Point myPoint;
Var:Point myOtherPoint;
Var:Point anotherPoint;
 
myPoint.x = 5;
myPoint.y = 10;
 
myOtherPoint.x = myPoint.x;
myOtherPoint.y = 15;
 
anotherPoint = myOtherPoint;

Also See

www.konsolscript.org
© 2005-2011 KonsolScript Labs | All Rights Reversed | Licensed under GNU GPL | Designed by Mj Mendoza IV
http://www.sourceforge.net